home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / os2 / timidsrc.zip / muldivor.c < prev    next >
Text File  |  1997-05-10  |  92b  |  4 lines

  1. unsigned int muldiv(unsigned int a, unsigned int b, unsigned int c) {
  2.    return a*b/c;
  3. }
  4.